/* * Copyright 2010-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package griffon.javafx.editors; import griffon.core.resources.editors.AbstractPropertyEditor; import javafx.scene.image.Image; import java.io.File; import java.io.InputStream; import java.net.MalformedURLException; import java.net.URI; import java.net.URL; /** * @author Andres Almiray */ public class ImagePropertyEditor extends AbstractPropertyEditor { protected void setValueInternal(Object value) { if (null == value) { super.setValueInternal(null); } else if (value instanceof CharSequence) { handleAsString(String.valueOf(value)); } else if (value instanceof File) { handleAsFile((File) value); } else if (value instanceof URL) { handleAsURL((URL) value); } else if (value instanceof URI) { handleAsURI((URI) value); } else if (value instanceof InputStream) { handleAsInputStream((InputStream) value); } else if (value instanceof Image) { super.setValueInternal(value); } else { throw illegalValue(value, Image.class); } } private void handleAsString(String str) { handleAsURL(getClass().getClassLoader().getResource(str)); } private void handleAsFile(File file) { try { handleAsURL(file.toURI().toURL()); } catch (MalformedURLException e) { throw illegalValue(file, URL.class); } } private void handleAsURL(URL url) { try { super.setValueInternal(new Image(url.toString())); } catch (Exception e) { throw illegalValue(url, URL.class); } } private void handleAsURI(URI uri) { try { handleAsURL(uri.toURL()); } catch (MalformedURLException e) { throw illegalValue(uri, URL.class); } } private void handleAsInputStream(InputStream stream) { try { super.setValueInternal(new Image(stream)); } catch (Exception e) { throw illegalValue(stream, URL.class); } } }